home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / dirut / dosdir21.zip / MAKEFILE.BOR < prev    next >
Text File  |  1994-06-22  |  407b  |  21 lines

  1. CC      = bcc
  2. DEFINES = -DDOSWILD
  3. CFLAGS  = $(DEFINES) -Z -O -w-par
  4. OBJS    = filelist.obj match.obj dosdir.obj fnsplit.obj
  5. OBJS2   = example2.obj dosdir.obj
  6. OBJS3   = example3.obj dirent.obj
  7.  
  8. all: filelist.exe example2.exe example3.exe
  9.  
  10. filelist.exe: $(OBJS)
  11.     $(CC) $(OBJS)
  12.  
  13. example2.exe: $(OBJS2)
  14.     $(CC) $(OBJS2)
  15.  
  16. example3.exe: $(OBJS3)
  17.     $(CC) $(OBJS3)
  18.  
  19. .c.obj:
  20.     $(CC) -c $(CFLAGS) $<
  21.